home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Applications / Macintosh Tracker 1.20 / source / Tracker Client Folder / CDividerLine.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-16  |  378 b   |  22 lines  |  [TEXT/KAHL]

  1. /* CDividerLine.c */
  2.  
  3. #include "CDividerLine.h"
  4. #include "LocationConstants.h"
  5. #include "CWindow.h"
  6.  
  7.  
  8. void            CDividerLine::IDividerLine(CWindow* TheWindow)
  9.     {
  10.         LongPoint            Start,Extent;
  11.  
  12.         GetRect(DividerLineID,&Start,&Extent);
  13.         IViewRect(Start,Extent,TheWindow,TheWindow);
  14.     }
  15.  
  16.  
  17. void            CDividerLine::DoUpdate(void)
  18.     {
  19.         SetUpPort();
  20.         Window->LPaintRect(ZeroPoint,Extent);
  21.     }
  22.